skip test failure on big endian systems.
authorÉtienne Mollier <emollier@debian.org>
Fri, 10 Apr 2026 17:41:34 +0000 (19:41 +0200)
committerÉtienne Mollier <emollier@debian.org>
Fri, 10 Apr 2026 17:41:34 +0000 (19:41 +0200)
Bug: https://lists.debian.org/debian-med/2026/02/msg00018.html
Bug-Debian: https://bugs.debian.org/1127756#25
Forwarded: not-needed.
Last-Update: 2026-02-17

The issue is known upstream and supposed to be fixed in an upcoming
version.
Last-Update: 2026-02-17
Gbp-Pq: Name skip-bigendian-roundtrip-failure.patch

dcmect/tests/t_roundtrip.cc

index 3d05322ba4a0613f96b058e5617dcae6b70651b1..8bc0462bb4bc5d345069681ab085070038d13ef1 100644 (file)
@@ -94,6 +94,13 @@ OFTEST(dcmect_roundtrip)
         return;
     }
 
+    /* Skip that particular test on big endian due to know issue in
+     * version 3.7.0.  This is going to be fixed in a future version.
+     */
+    if (gLocalByteOrder != EBO_LittleEndian) {
+        return;
+    }
+
     // Creation
     EctEnhancedCT* ct = create();
     configureIOD(ct);